home *** CD-ROM | disk | FTP | other *** search
- Path: halon.vggas.com!news
- From: JYoungman@vggas.com (James Youngman)
- Newsgroups: comp.lang.c
- Subject: Re: Calling a Function Twice from a printf statement.
- Date: 6 Mar 1996 10:53:24 GMT
- Organization: VG Gas Analysis Systems
- Message-ID: <4hjqr4$s70@halon.vggas.com>
- References: <4he6q9$6r6@newsbf02.news.aol.com>
- NNTP-Posting-Host: 132.147.163.4
- Mime-Version: 1.0
- Content-Type: Text/Plain; charset=US-ASCII
- X-Newsreader: WinVN 0.99.7
-
- In article <4he6q9$6r6@newsbf02.news.aol.com>, razine@aol.com says...
- >
- >I am trying to call a function twice from my program on the same printf
- >line and have run into a small problem. i was wondering if someone can
- >explain how to fix it.
-
- The ANSI standard specifies nothing about the order of calls in statements
- such as:-
-
- foo("string", bar(1), baz(2));
-
- or the degenerate case:-
-
- foo(bar(1),bar(2));
-
- James.
-
-